Noemax FastInfoset.NET
WriteValue(Single[]) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteValue Method : WriteValue(Single[]) Method






value
The array containing a single or multiple single-precision floating-point numbers.

Encodes a single or multiple single-precision floating-point numbers using Fast Infoset's binary encoding and writes the result at the current position in the element content.

Syntax

Visual Basic (Declaration) 
Public Overloads Shadows Sub WriteValue( _
   ByVal value() As Single _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value() As Single
 
instance.WriteValue(value)
C# 
public new void WriteValue( 
   float[] value
)
Delphi 
public procedure WriteValue( 
    value: Singlearray of
); 
JScript 
public hide function WriteValue( 
   value : float[]
);
Managed Extensions for C++ 
public: new void WriteValue( 
   float[]* value
) 
C++/CLI 
public:
new void WriteValue( 
   array<float>^ value
) 

Parameters

value
The array containing a single or multiple single-precision floating-point numbers.

See Also